
* {
    font-family: "Times New Roman", serif !important;
}

/* ---------- GENERALES ---------- */
body {
    margin: 0;
    background: #2c563d;
    color: #ffffff;
}

/* ---------- NAVBAR ---------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: linear-gradient(to right, #6bb38e, #294d38);
}

.header .menu {
    font-size: 24px;
    font-weight: bold;
}

.nav-links a {
    margin: 0 18px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
}

.nav-links a:hover {
    color: #d6ffd6;
}

.cart-icon img {
    width: 30px;
}

/* ---------- HERO GIF ---------- */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
}

.hero-text h1 {
    font-size: 55px;
    margin: 0;
}

.gif-tag {
    font-size: 12px;
    margin-bottom: 5px;
}

/* ---------- MARQUEE ---------- */
.marquee-container {
    background: #1f3c2a;
    padding: 25px 0;
    overflow: hidden;
    transform: rotate(-2.5deg);
}

.marquee {
    white-space: nowrap;
    animation: scroll 12s linear infinite;
}

.marquee span {
    font-size: 40px;
    padding-right: 50px;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- PRODUCT GRID ---------- */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 60px;
}

.card {
    background: #ffffff;
    color: #1b1b1b;
    padding: 30px;
    border-radius: 22px;
    text-align: left;
}

.card-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 20px;
    margin: 0;
}

.stars {
    margin: 8px 0;
}

.price {
    margin: 0 0 18px 0;
    font-size: 17px;
}

/* ---------- GRADIENT ---------- */
.btn {
    width: 100%;
    padding: 14px 0;
    border-radius: 18px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    background: linear-gradient(to right, #d5e7d5, #b7cbb7);
    transition: 0.3s;
}

.btn:hover {
    background: #cfcfcf;
}

/* ---------- FOOTER ---------- */
.footer {
    background: linear-gradient(to right, #2f6444, #244a33);
    text-align: center;
    padding: 45px;
}

.footer-links a {
    margin: 0 14px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer-cart {
    width: 30px;
    margin-top: 20px;
}

